home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Freelog 121
/
FreelogMagazineJuilletAout2014-No121.iso
/
Outils
/
Adobe-Air
/
adobe-air_13.exe
/
[0]
/
setup.swf
/
scripts
/
_opaquePanelStyle.as
< prev
next >
Wrap
Text File
|
2014-03-27
|
1KB
|
39 lines
package
{
import mx.core.IFlexModuleFactory;
import mx.styles.CSSStyleDeclaration;
import mx.styles.StyleManager;
public class _opaquePanelStyle
{
public function _opaquePanelStyle()
{
super();
}
public static function init(param1:IFlexModuleFactory) : void
{
var fbs:IFlexModuleFactory = param1;
var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration(".opaquePanel");
if(!style)
{
style = new CSSStyleDeclaration();
StyleManager.setStyleDeclaration(".opaquePanel",style,false);
}
if(style.defaultFactory == null)
{
style.defaultFactory = function():void
{
this.footerColors = [15198183,13092807];
this.borderColor = 16777215;
this.headerColors = [15198183,14277081];
this.borderAlpha = 1;
this.backgroundColor = 16777215;
};
}
}
}
}